home *** CD-ROM | disk | FTP | other *** search
/ Hyper Stacks 1994 May / Hyper Stacks (Pacific HiTech)(1994)[Mac].iso / Organization / HyperReferencer v1.3 / Abstracts / background_2665.txt < prev    next >
Text File  |  1988-07-20  |  3KB  |  134 lines

  1. -- background: 2665 from stack: in
  2. -- bmap block id: 5374
  3. -- flags: 0000
  4. -- background id: 0
  5. -- name: 
  6.  
  7.  
  8. -- part 1 (field)
  9. -- low flags: 00
  10. -- high flags: 0004
  11. -- rect: left=48 top=38 right=78 bottom=470
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 0
  15. -- font id: 21
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: title
  20.  
  21.  
  22. -- part 2 (field)
  23. -- low flags: 80
  24. -- high flags: 0007
  25. -- rect: left=48 top=107 right=316 bottom=466
  26. -- title width / last selected line: 0
  27. -- icon id / first selected line: 0 / 0
  28. -- text alignment: 0
  29. -- font id: 20
  30. -- text size: 14
  31. -- style flags: 0
  32. -- line height: 18
  33. -- part name: abstract
  34.  
  35.  
  36. -- part 4 (button)
  37. -- low flags: 00
  38. -- high flags: 0000
  39. -- rect: left=9 top=42 right=73 bottom=38
  40. -- title width / last selected line: 0
  41. -- icon id / first selected line: 1012 / 1012
  42. -- text alignment: 1
  43. -- font id: 0
  44. -- text size: 12
  45. -- style flags: 0
  46. -- line height: 16
  47. -- part name: back
  48. ----- HyperTalk script -----
  49. on mouseUp
  50.   set lockScreen to true
  51.   pop card
  52.   set lockScreen to false
  53. end mouseup
  54.  
  55.  
  56.  
  57. -- part 5 (field)
  58. -- low flags: 80
  59. -- high flags: 0007
  60. -- rect: left=48 top=107 right=316 bottom=466
  61. -- title width / last selected line: 0
  62. -- icon id / first selected line: 0 / 0
  63. -- text alignment: 0
  64. -- font id: 21
  65. -- text size: 12
  66. -- style flags: 0
  67. -- line height: 16
  68. -- part name: comment
  69.  
  70.  
  71. -- part 6 (field)
  72. -- low flags: 01
  73. -- high flags: 0000
  74. -- rect: left=48 top=80 right=105 bottom=253
  75. -- title width / last selected line: 0
  76. -- icon id / first selected line: 0 / 0
  77. -- text alignment: 0
  78. -- font id: 20
  79. -- text size: 18
  80. -- style flags: 0
  81. -- line height: 24
  82. -- part name: displayType
  83.  
  84.  
  85. -- part 7 (button)
  86. -- low flags: 80
  87. -- high flags: 0000
  88. -- rect: left=9 top=79 right=107 bottom=39
  89. -- title width / last selected line: 0
  90. -- icon id / first selected line: 2478 / 2478
  91. -- text alignment: 1
  92. -- font id: 0
  93. -- text size: 12
  94. -- style flags: 0
  95. -- line height: 16
  96. -- part name: Show Comment
  97. ----- HyperTalk script -----
  98. on mouseUp
  99.   set lockscreen to true
  100.   put "Comment" into field displayType
  101.   hide field Abstract
  102.   show field comment
  103.   hide background button "Show Comment"
  104.   show background button "Show Abstract"
  105.   set lockscreen to false
  106. end mouseUp
  107.  
  108.  
  109.  
  110.  
  111. -- part 8 (button)
  112. -- low flags: 80
  113. -- high flags: 0000
  114. -- rect: left=7 top=78 right=114 bottom=41
  115. -- title width / last selected line: 0
  116. -- icon id / first selected line: 1004 / 1004
  117. -- text alignment: 1
  118. -- font id: 0
  119. -- text size: 12
  120. -- style flags: 0
  121. -- line height: 16
  122. -- part name: Show Abstract
  123. ----- HyperTalk script -----
  124. on mouseUp
  125.   set lockscreen to true
  126.   put "Abstract" into field displayType
  127.   hide field Comment
  128.   show field Abstract
  129.   hide background button "Show Abstract"
  130.   show background button "Show Comment"
  131.   set lockscreen to false
  132. end mouseUp
  133.  
  134.